home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / vim_src.zip / SEARCH.PRO < prev    next >
Text File  |  1993-01-12  |  707b  |  15 lines

  1. /* search.c */
  2. struct regexp *myregcomp __PARMS((char *pat));
  3. int searchit __PARMS((struct fpos *pos, int dir, char *str, long count, int end));
  4. int dosearch __PARMS((int dir, char *str, int reverse, long count));
  5. int searchc __PARMS((int c, int dir, int type, long count));
  6. struct fpos *showmatch __PARMS((void));
  7. int findfunc __PARMS((int dir, int what, long count));
  8. int findsent __PARMS((int dir, long count));
  9. int findpar __PARMS((int dir, long count, int what));
  10. int startPS __PARMS((long lnum, int para));
  11. int fwd_word __PARMS((long count, int type));
  12. int bck_word __PARMS((long count, int type));
  13. int end_word __PARMS((long count, int type, int stop));
  14. int skip_chars __PARMS((int class, int dir));
  15.